home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #9 / K-CD-9-2002.ISO / Freedom Force / data1.cab / System_Files / ai.py next >
Encoding:
Python Source  |  2002-03-21  |  1.5 KB  |  43 lines

  1. #-----------------------------------------------------------------
  2. # Module: ai
  3. #   AI specific script stuff
  4. #-----------------------------------------------------------------
  5.  
  6. import _ai
  7. import goal
  8.  
  9. #-----------------------------------------------------------------
  10. # The AI class, typically you create one of these by using
  11. # the findAI function
  12. class AI:
  13.     def __init__( self, id ):
  14.         self.id = id
  15.  
  16.     # add a goal to this ai,
  17.     # optional callback will be called when this goal completes
  18.     # the permanent flag will not allow the goal to complete, and prevent removal by clearGoals()
  19.     def addGoal( self, goal, priority = goal.PRI_ZERO, callback = '', user = 0, permanent = 0 ):
  20.         """Add a goal object to the ai.  See module goal."""
  21.         _ai.addGoal( self.id, goal, priority, callback, user, permanent )
  22.  
  23.     # remove all non-permanent goals from this ai
  24.     def clearGoals( self ):
  25.         _ai.clearGoals( self.id )
  26.  
  27.     # remove the permanent natural kill goal.
  28.     def removeNaturalKillGoal( self ):
  29.         _ai.removeNaturalKillGoal( self.id )
  30.  
  31. #-----------------------------------------------------------------
  32. def findAI( name ):
  33.     """Find an AI object based on name"""
  34.     return AI( _ai.findObject(name) )
  35.  
  36. #-----------------------------------------------------------------
  37. def addGoalToAI( name, goal, priority = goal.PRI_ZERO, callback = '', user = 0, permanent = 0, replace = 1 ):
  38.     ai = findAI(name)
  39.     if replace:
  40.         ai.clearGoals()
  41.     ai.addGoal(goal,priority,callback,user,permanent)
  42.  
  43.